Skip to content

IRxCommand interface

Defined in

Namespace: ReactiveMarbles.Command Assembly: ReactiveMarbles.Command.dll Full name: ReactiveMarbles.Command.IRxCommand<T1, T2> Modifiers: public abstract

Summary

        Encapsulates a user action behind a reactive interface.
        This is for interop inside for the command binding.
        Not meant for external use due to the fact it doesn't implement ICommand
        to force the user to favor the Reactive style command execution.
        

Applies to

netstandard2.0

Class hierarchy
classDiagram
class IRxCommand~T1,T2~
class IRxCommand {
    <>
}
IRxCommand <|.. IRxCommand~T1,T2~
class ICommand {
    <>
}
ICommand <|.. IRxCommand~T1,T2~
class IDisposable {
    <>
}
IDisposable <|.. IRxCommand~T1,T2~
class IObservable~TResult~ {
    <>
}
IObservable~TResult~ <|.. IRxCommand~T1,T2~

Implements: IRxCommand, ICommand, IDisposable, IObservable

Methods

NameSummary
ExecuteGets an observable that, when subscribed, executes this command.